home *** CD-ROM | disk | FTP | other *** search
/ Computer Life 1997 February / Computer Life February 1997.iso / S / wws9530 / Product / WORDSRCH.EXE / 0 / RCDATA / TRANDOMWORDS / TRANDOMWORDS.txt
Text File  |  1996-03-09  |  1KB  |  79 lines

  1. object RandomWords: TRandomWords
  2.   Left = 270
  3.   Top = 119
  4.   BorderStyle = bsDialog
  5.   Caption = 'Random Word Selector'
  6.   ClientHeight = 85
  7.   ClientWidth = 342
  8.   Font.Color = clBlack
  9.   Font.Height = -17
  10.   Font.Name = 'Arial'
  11.   Font.Style = []
  12.   PixelsPerInch = 120
  13.   Position = poScreenCenter
  14.   Scaled = False
  15.   OnCreate = FormCreate
  16.   OnShow = FormShow
  17.   TextHeight = 19
  18.   object Label1: TLabel
  19.     Left = 20
  20.     Top = 20
  21.     Width = 177
  22.     Height = 19
  23.     AutoSize = False
  24.     Caption = 'Number of Words'
  25.   end
  26.   object Label2: TLabel
  27.     Left = 20
  28.     Top = 48
  29.     Width = 177
  30.     Height = 19
  31.     AutoSize = False
  32.     Caption = 'Minimum Word Length'
  33.   end
  34.   object Bevel1: TBevel
  35.     Left = 8
  36.     Top = 8
  37.     Width = 249
  38.     Height = 69
  39.     Shape = bsFrame
  40.     Style = bsRaised
  41.   end
  42.   object NumWords: TEdit
  43.     Left = 208
  44.     Top = 12
  45.     Width = 41
  46.     Height = 27
  47.     MaxLength = 2
  48.     TabOrder = 0
  49.   end
  50.   object MinWordLen: TEdit
  51.     Left = 208
  52.     Top = 44
  53.     Width = 41
  54.     Height = 27
  55.     MaxLength = 2
  56.     TabOrder = 1
  57.     Text = ' '
  58.   end
  59.   object OkButton: TButton
  60.     Left = 264
  61.     Top = 8
  62.     Width = 69
  63.     Height = 33
  64.     Caption = '&Ok'
  65.     Default = True
  66.     TabOrder = 2
  67.     OnClick = OkButtonClick
  68.   end
  69.   object CancelButton: TButton
  70.     Left = 264
  71.     Top = 44
  72.     Width = 69
  73.     Height = 33
  74.     Caption = '&Cancel'
  75.     TabOrder = 3
  76.     OnClick = CancelButtonClick
  77.   end
  78. end
  79.